home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 3 / Amiga Tools 3.iso / rexx / record.avm < prev    next >
Text File  |  1994-06-24  |  437b  |  15 lines

  1. /* */
  2. parse upper arg server device file type compression .
  3.  
  4. if type = 'VOICE' then
  5.     if device = 'TELEPHONELINE' | device = 'EXTERNALMIC' | device = 'LOCALHANDSET' then
  6.         address rexx 'useBracket' server 'recordzyxel' server device file
  7.     else if device = 'AMIGA' then
  8.         address rexx 'recordamiga' compression file
  9.     else if device = 'IFF' then
  10.         address rexx 'loadiff' 'ram:save.iff' compression file
  11. else if type = 'FAX' then
  12.     nop
  13. exit
  14.  
  15.